duct.rs
Duct is a library for running child processes. Duct makes it easy to build pipelines and redirect IO like a shell. At the same time, Duct helps you write correct, portable code: whitespace is never significant, errors from child processes get reported by default, and a variety of gotchas, bugs, and platform inconsistencies are handled for you the Right Way™.
Examples
Run a command without capturing any output. Here "hi" is printed directly to the terminal:
use cmd;
cmd!.run?;
Capture the standard output of a command. Here "hi" is returned as a
String
:
let stdout = cmd!.read?;
assert_eq!;
Capture the standard output of a pipeline:
let stdout = cmd!.pipe.read?;
assert_eq!;
Merge standard error into standard output and read both incrementally:
use cmd;
use *;
use BufReader;
let big_cmd = cmd!;
let reader = big_cmd.stderr_to_stdout.reader?;
let mut lines = new.lines;
assert_eq!;
assert_eq!;
Children that exit with a non-zero status return an error by default:
let result = cmd!.run;
assert!;
let result = cmd!.unchecked.run;
assert!;